@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');
*{
    padding: 0;
    margin: 0;
    font-family: 'Poppins', sans-serif;
    box-sizing: border-box;
}
.container .header{
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 2em;
    margin-bottom: 2em;
    width: 100%;
    height: 100%;
    background: gray;
}
.container .header h1{
    font-size: 2.6rem;
    color: aliceblue;
}
.container .header h1 span{
    font-size: 2.6rem;
    color: aqua;
}
.container .header .circle{
    position: absolute;
    bottom: -20%;
    left: 89%;
    display: flex;
}

.container .body{
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
}
.container .body .first-row{
    display: flex;
    width: 100%;
    padding: 0em 2em;
}
.container .body .first-box{
    display: flex;
    width: 50%;
    flex-direction: column;
    padding: 1em;
    gap: .5em;
    border-right: solid 2px black;
    border-bottom: solid 2px black;
}
.container .body .second-box{
    display: flex;
    width: 50%;
    flex-direction: column;
    padding: 1em;
    gap: .5em;
    border-bottom: solid 2px black;
}
.container .body .second-row{
    display: flex;
    width: 100%;
    padding: 0em 2em;
}
.container .body .third-row{
    display: flex;
    width: 100%;
    flex-direction: column;
}
.container .body .third-row .head{
    display: flex;
    justify-content: center;
    align-items: center;
}
.container .body .third-row .wrapper{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0em 2em;
}